home *** CD-ROM | disk | FTP | other *** search
/ Apple WWDC 1996 / WWDC96_1996 (CD).toast / Technology Materials / MacOS 8 Resources / Developer Tools / Mac OS 8 Interfaces & Libraries / Interfaces / CIncludes / TextObjectUtilities.h < prev    next >
C/C++ Source or Header  |  1996-05-01  |  4KB  |  103 lines

  1. /*
  2.      File:        TextObjectUtilities.h
  3.  
  4.      Contains:    Text object Utilities Interfaces.
  5.  
  6.      Version:    Technology:    System 8
  7.                  Release:    Universal Interfaces 3.0d3 on Copland DR1
  8.  
  9.      Copyright:    © 1984-1996 by Apple Computer, Inc.  All rights reserved.
  10.  
  11.      Bugs?:        If you find a problem with this file, send the file and version
  12.                  information (from above) and the problem description to:
  13.  
  14.                      Internet:    apple.bugs@applelink.apple.com
  15.                      AppleLink:    APPLE.BUGS
  16.  
  17. */
  18. #ifndef __TEXTOBJECTUTILITIES__
  19. #define __TEXTOBJECTUTILITIES__
  20.  
  21. #ifndef __CONDITIONALMACROS__
  22. #include <ConditionalMacros.h>
  23. #endif
  24. #ifndef __UNICODE__
  25. #include <Unicode.h>
  26. #endif
  27. #ifndef __TEXTOBJECTS__
  28. #include <TextObjects.h>
  29. #endif
  30. #ifndef __AEDATAMODEL__
  31. #include <AEDataModel.h>
  32. #endif
  33.  
  34. #ifdef __cplusplus
  35. extern "C" {
  36. #endif
  37.  
  38. #if PRAGMA_IMPORT_SUPPORTED
  39. #pragma import on
  40. #endif
  41.  
  42. #if PRAGMA_ALIGN_SUPPORTED
  43. #pragma options align=mac68k
  44. #endif
  45.  
  46. #if FOR_SYSTEM7_AND_SYSTEM8_PREEMPTIVE
  47. extern OSStatus ConvertPStringToTextObject(ConstStr255Param srcString, TextEncoding srcEncoding, LocaleIdentifier localeID, TextObject oldTextObject, TextObject *newTextObject, OptionBits optionBits);
  48.  
  49. extern OSStatus ConvertTextObjectToPString(ConstTextObject textObject, TextObjectIndex startIndex, TextObjectIndex endIndex, StringPtr destString, ByteCount destMaxStringLength, TextEncoding destEncoding, TextObjectIndex *nextIndex);
  50.  
  51. extern OSStatus ConvertCStringToTextObject(const char *srcString, TextEncoding srcEncoding, LocaleIdentifier localeID, TextObject oldTextObject, TextObject *newTextObject, OptionBits optionBits);
  52.  
  53. extern OSStatus ConvertTextObjectToCString(ConstTextObject textObject, TextObjectIndex startIndex, TextObjectIndex endIndex, char *destString, ByteCount destMaxStringLength, TextEncoding destEncoding, TextObjectIndex *nextIndex);
  54.  
  55. extern OSStatus ConvertUnicodeStringToTextObject(const UniChar *srcString, ByteCount stringLength, TextEncoding srcEncoding, LocaleIdentifier srcLocaleID, TextObject oldTextObject, TextObject *newTextObject, OptionBits optionBits);
  56.  
  57. extern OSStatus ConvertTextObjectToUnicodeString(ConstTextObject textObject, TextObjectIndex startIndex, TextObjectIndex endIndex, UniChar *destString, ByteCount destMaxStringLength, TextEncoding destEncoding, TextObjectIndex *nextIndex, ByteCount *destLength);
  58.  
  59. extern OSStatus ConcatTextObjects(ConstTextObject textObject1, ConstTextObject textObject2, TextObject *newTextObject, OptionBits optionBits);
  60.  
  61. /* Text object resource types */
  62.  
  63. enum {
  64.     kTextObjResourceType        = 'txto',                        /* single text object*/
  65.     kTextObjListResourceType    = 'txt#'                        /* list of text objects*/
  66. };
  67.  
  68. #endif
  69. #if FOR_SYSTEM7_AND_SYSTEM8_COOPERATIVE
  70. extern OSStatus GetTextObject(TextObject *newTextObject, short textObjResID);
  71.  
  72. extern OSStatus GetTextObjectListCount(short textObjListResID, UInt16 *count);
  73.  
  74. extern OSStatus GetIndTextObject(TextObject *newTextObject, short textObjListResID, UInt16 index);
  75.  
  76. #endif
  77. #if FOR_SYSTEM8_PREEMPTIVE
  78. #if FOR_PTR_BASED_AE
  79. /* The caller must provide the text object to be filled in. */
  80. extern OSStatus ConvertAESubDescToTextObject(const AESubDesc *subDesc, TextObject textObject);
  81.  
  82. extern OSStatus ConvertTextObjectToAEDesc(ConstTextObject textObject, TextObjectIndex startIndex, TextObjectIndex endIndex, AEDesc *descriptor);
  83.  
  84. extern OSStatus WriteTextObjectToAEStream(AEStream stream, ConstTextObject textObject, TextObjectIndex startIndex, TextObjectIndex endIndex);
  85.  
  86. #endif
  87. #endif
  88.  
  89. #if PRAGMA_ALIGN_SUPPORTED
  90. #pragma options align=reset
  91. #endif
  92.  
  93. #if PRAGMA_IMPORT_SUPPORTED
  94. #pragma import off
  95. #endif
  96.  
  97. #ifdef __cplusplus
  98. }
  99. #endif
  100.  
  101. #endif /* __TEXTOBJECTUTILITIES__ */
  102.  
  103.